home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / eTNote.subproj / eTNoteUI.h < prev    next >
Encoding:
Text File  |  1994-07-26  |  1.0 KB  |  37 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTNoteUI.h 
  3. //    SUMMARY:    Interface for inserting RTF Notes into a document
  4. //    SUPERCLASS:    eTNoteUI:eTImageUI:Object
  5. //    INTERFACE:    eTNoteUI.nib
  6. //    PROTOCOLS:    <Inspectable>
  7. //    AUTHOR:        Rohit Khare
  8. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //  DESCRIPTION
  11. //        Just a scrollview for the text and fields for owner/date.
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //    HISTORY
  14. //    07/24/94:    Migrated to subclass of eTImageUI
  15. //    05/22/94:    Created. First actual implementation.
  16. ///////////////////////////////////////////////////////////////////////////////
  17.  
  18. #import "eTNote.h"
  19.  
  20. @interface eTNoteUI:eTImageUI <Inspectable>
  21. {
  22.     id    notePanel;
  23.     id    noteView;
  24.     id    etNote;
  25.     id    repText;
  26.     id    ownerField;
  27.     id    dateField;
  28.     BOOL ownerDirty, textDirty;
  29. }
  30. + new;
  31. - setNote:newNote;
  32. - load;
  33. - sync;
  34. - resetOwner:sender;
  35. - resetText:sender;
  36. @end
  37.